home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / misc.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  1KB  |  40 lines

  1. /* Copyright 2001-2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_MISC_H_
  13. #define _KUDZU_MISC_H_
  14.  
  15. #include "device.h"
  16.  
  17. struct miscDevice {
  18.     /* common fields */
  19.     struct device *next;    /* next device in list */
  20.     int index;
  21.     enum deviceClass type;    /* type */
  22.     enum deviceBus bus;        /* bus it's attached to */
  23.     char * device;        /* device file associated with it */
  24.     char * driver;        /* driver to load, if any */
  25.     char * desc;        /* a description */
  26.     int detached;
  27.     void * classprivate;
  28.     /* misc-specific fields */
  29.     struct miscDevice *(*newDevice) (struct miscDevice *dev);
  30.     void (*freeDevice) (struct miscDevice *dev);
  31.     void (*writeDevice) (FILE *file, struct miscDevice *dev);
  32.     int (*compareDevice) (struct miscDevice *dev1, struct miscDevice *dev2);
  33. };
  34.  
  35. struct miscDevice *miscNewDevice(struct miscDevice *dev);
  36. struct device *miscProbe(enum deviceClass probeClass, int probeFlags,
  37.             struct device *devlist);
  38.  
  39. #endif
  40.